home *** CD-ROM | disk | FTP | other *** search
- /*******************************<+>***************************
- ** DTA
- *************************************************************
- **
- ** $Id: Set.h,v 1.5 1994/02/25 21:56:50 dta Exp $
- **
- ** $Source: /cvs/lib/odmg/Set.h,v $
- **
- ** What @(#):
- **
- ** Author: Dale T. Anderson
- **
- *******************************<+>***************************/
-
- #ifndef _Set_h
- #define _Set_h
-
- #include <Odmg/List.h>
-
- template <class T> class Set :
- public List <T>
- {
- public:
-
- Set ();
- virtual ~Set ();
- };
-
- template <class T>
- Set<T>::Set ()
- {
- m_allows_duplicates = FALSE;
- }
-
- template <class T>
- Set<T>::~Set ()
- {
- }
-
- #endif
-